GtkSearchBar: Don't show a close button by default
authorBastien Nocera <hadess@hadess.net>
Fri, 5 Jul 2013 14:05:56 +0000 (16:05 +0200)
committerBastien Nocera <hadess@hadess.net>
Tue, 9 Jul 2013 07:17:01 +0000 (09:17 +0200)
And mention in which cases we should show one in the documentation.

https://bugzilla.gnome.org/show_bug.cgi?id=703656

gtk/gtksearchbar.c

index 67a5eaa1c1bfdafd6e8c4a86a469910ca0061bea..330fdb229e1a1290a6fb06bc79e52c761add385d 100644 (file)
@@ -398,7 +398,7 @@ gtk_search_bar_class_init (GtkSearchBarClass *klass)
   widget_props[PROP_SHOW_CLOSE_BUTTON] = g_param_spec_boolean ("show-close-button",
                                                                P_("Show Close Button"),
                                                                P_("Whether to show the close button in the toolbar"),
-                                                               TRUE,
+                                                               FALSE,
                                                                G_PARAM_READWRITE | G_PARAM_CONSTRUCT);
 
   g_object_class_install_properties (object_class, LAST_PROPERTY, widget_props);
@@ -540,7 +540,10 @@ gtk_search_bar_get_show_close_button (GtkSearchBar *bar)
  * @bar: a #GtkSearchBar
  * @visible: whether the close button will be shown or not
  *
- * Shows or hides the close button.
+ * Shows or hides the close button. Applications that
+ * already have a "search" toggle button should not show a close
+ * button in their search bar, as it duplicates the role of the
+ * toggle button.
  *
  * Since: 3.10
  */